* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
}

body {
    background-image: url("../imgs/grilled-beef.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Maintain the cover size */
    font-family: 'Cairo', Arial, sans-serif; /* Use Google Font */
    
    font-size: 1rem; /* Use rem for better responsiveness */
    overflow: hidden;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0; /* Center and add top margin */
}

.big-image {
    max-width: 60%; /* Responsive image */
    height: auto;
}

.wrap {
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 0 10px;
}

a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    max-width: 81%;
    text-decoration: none;
    border-radius: 70px;
    padding: 15px 20px;
    color: #ffffffd9;
    box-shadow: inset 0 0 40px rgb(4, 1, 8);
    font-size: 30px;
    background-color: rgb(99, 91, 91);
}

.button i {
    position: absolute;
    left: 20px; /* Position icon to the left */
}

.button i img {
    width: 30px;
    height: auto;
}

.button span {
    flex: 1;
    text-align: center; /* Center text inside button */
}

.img3 {
    padding: 10px;
}

.img2 {
    margin-top: 9px;
}

/* Media Queries */
@media screen and (max-width: 600px) {
    a.button {
        max-width: 90%;
        padding: 10px 15px;
        font-size: 26px;
    }

    .button i img {
        width: 45px;
    }
}

@media screen and (max-width: 768px) {
    .big-image {
        max-width: 80%; /* Increase image size on tablets */
    }

    a.button {
        font-size: 28px;
    }

    .button i img {
        width: 40px; /* Adjust icon size */
    }
}

@media screen and (max-width: 992px) {
    a.button {
        max-width: 85%; /* Slightly increase button size */
        padding: 12px 18px;
    }

    body {
        font-size: 1.1rem; /* Slightly increase font size */
    }

    .image-container {
        margin: 30px 0; /* Reduce margin */
    }
}

@media screen and (max-width: 1200px) {
    .big-image {
        max-width: 70%; /* Adjust image size for larger screens */
    }

    a.button {
        padding: 14px 19px;
        font-size: 29px; /* Adjust button font size */
    }
}

@media screen and (min-width: 1201px) {
    a.button {
        max-width: 75%; /* Maintain max-width for larger screens */
    }

    .big-image {
        max-width: 50%; /* Set max width for large desktops */
    }
}
